home *** CD-ROM | disk | FTP | other *** search
/ Giga Games 1 / Giga Games.iso / net / hack / 2_3 / wseg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-06-20  |  311 b   |  15 lines

  1. /*    SCCS Id: @(#)wseg.h    1.4    87/08/08
  2. /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
  3. /* wseg.h - version 1.0.2 */
  4.  
  5. #ifndef NOWORM
  6. /* worm structure */
  7. struct wseg {
  8.     struct wseg *nseg;
  9.     xchar wx,wy;
  10.     Bitfield(wdispl,1);
  11. };
  12.  
  13. #define newseg()    (struct wseg *) alloc(sizeof(struct wseg))
  14. #endif
  15.